#622 - Implement Collection Export to ZIP with Secret Handling#655
Open
#622 - Implement Collection Export to ZIP with Secret Handling#655
Conversation
Add functionality to export collections as `.trufos.zip` files, including options to handle secret values. Introduced UI elements for exporting and options for including secrets. Updated relevant services and added tests for export functionality.
Open
SoulKa
reviewed
Jan 4, 2026
| <Checkbox | ||
| id="include-secrets" | ||
| checked={includeSecrets} | ||
| onCheckedChange={(checked) => setIncludeSecrets(checked === true)} |
Collaborator
There was a problem hiding this comment.
Does this also work?
onCheckedChange={setIncludeSecrets}| const result = await eventService.showOpenDialog({ | ||
| title: 'Select Export Location', | ||
| buttonLabel: 'Export', | ||
| properties: ['openDirectory'], |
Collaborator
There was a problem hiding this comment.
why directory and not (ZIP)-file?
Comment on lines
+13
to
+23
| function clearSecretValues(variables: VariableMap): VariableMap { | ||
| const cleared: VariableMap = {}; | ||
| for (const [key, variable] of Object.entries(variables)) { | ||
| if (variable.secret) { | ||
| cleared[key] = { ...variable, value: '' }; | ||
| } else { | ||
| cleared[key] = variable; | ||
| } | ||
| } | ||
| return cleared; | ||
| } |
Collaborator
There was a problem hiding this comment.
This should not be necessary. It would be the easiest to simply include or not include secret files from disk while zipping. No parsing needed.
awulz
pushed a commit
that referenced
this pull request
Feb 3, 2026
SoulKa
pushed a commit
that referenced
this pull request
Feb 3, 2026
* #665 - upgrade react-resizable-panels to v4 * #665 - update react-resizable-panels to v4.5.8 * #665 - fix panel sizing for v4 compatibility (use percentage strings for defaultSize and minSize, changed Separator color to Primary color) * #665 - revert separator styling to original (hover/active states caused visual bugs when interacting with other elements) * #665 - separator invisible by default, shows primary color on hover/drag * #655 - changed formatting to Prettier in resizable.tsx and App.tsx --------- Co-authored-by: anwu <andrin.wulz@exxeta.ch>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add functionality to export collections as
.trufos.zipfiles, including options to handle secret values. Introduced UI elements for exporting and options for including secrets. Updated relevant services and added tests for export functionality.fix #622
Changes
Describe the changes of your PR here
Testing
If relevant, mention your manual testing here. If possible, include screenshots.
Checklist